home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / ncurses-5.3 / ncurses / tinfo / strings.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-27  |  4.3 KB  |  144 lines

  1. /****************************************************************************
  2.  * Copyright (c) 2000 Free Software Foundation, Inc.                        *
  3.  *                                                                          *
  4.  * Permission is hereby granted, free of charge, to any person obtaining a  *
  5.  * copy of this software and associated documentation files (the            *
  6.  * "Software"), to deal in the Software without restriction, including      *
  7.  * without limitation the rights to use, copy, modify, merge, publish,      *
  8.  * distribute, distribute with modifications, sublicense, and/or sell       *
  9.  * copies of the Software, and to permit persons to whom the Software is    *
  10.  * furnished to do so, subject to the following conditions:                 *
  11.  *                                                                          *
  12.  * The above copyright notice and this permission notice shall be included  *
  13.  * in all copies or substantial portions of the Software.                   *
  14.  *                                                                          *
  15.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
  16.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
  17.  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
  18.  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
  19.  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
  20.  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
  21.  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
  22.  *                                                                          *
  23.  * Except as contained in this notice, the name(s) of the above copyright   *
  24.  * holders shall not be used in advertising or otherwise to promote the     *
  25.  * sale, use or other dealings in this Software without prior written       *
  26.  * authorization.                                                           *
  27.  ****************************************************************************/
  28.  
  29. /****************************************************************************
  30.  *  Author: Thomas E. Dickey                                                *
  31.  ****************************************************************************/
  32.  
  33. /*
  34. **    lib_mvcur.c
  35. **/
  36.  
  37. #include <curses.priv.h>
  38.  
  39. MODULE_ID("$Id: strings.c,v 1.3 2000/12/10 02:55:08 tom Exp $")
  40.  
  41. /****************************************************************************
  42.  * Useful string functions (especially for mvcur)
  43.  ****************************************************************************/
  44.  
  45. #if !HAVE_STRSTR
  46. NCURSES_EXPORT(char *)
  47. _nc_strstr
  48. (const char *haystack, const char *needle)
  49. {
  50.     size_t len1 = strlen(haystack);
  51.     size_t len2 = strlen(needle);
  52.     char *result = 0;
  53.  
  54.     while ((len1 != 0) && (len1-- >= len2)) {
  55.     if (!strncmp(haystack, needle, len2)) {
  56.         result = haystack;
  57.         break;
  58.     }
  59.     haystack++;
  60.     }
  61.     return result;
  62. }
  63. #endif
  64.  
  65. /*
  66.  * Initialize the descriptor so we can append to it.
  67.  */
  68. NCURSES_EXPORT(string_desc *)
  69. _nc_str_init
  70. (string_desc * dst, char *src, size_t len)
  71. {
  72.     if (dst != 0) {
  73.     dst->s_head = src;
  74.     dst->s_tail = src;
  75.     dst->s_size = len - 1;
  76.     if (src != 0)
  77.         *src = 0;
  78.     }
  79.     return dst;
  80. }
  81.  
  82. /*
  83.  * Initialize the descriptor for only tracking the amount of memory used.
  84.  */
  85. NCURSES_EXPORT(string_desc *)
  86. _nc_str_null
  87. (string_desc * dst, size_t len)
  88. {
  89.     return _nc_str_init(dst, 0, len);
  90. }
  91.  
  92. /*
  93.  * Copy a descriptor
  94.  */
  95. NCURSES_EXPORT(string_desc *)
  96. _nc_str_copy
  97. (string_desc * dst, string_desc * src)
  98. {
  99.     *dst = *src;
  100.     return dst;
  101. }
  102.  
  103. /*
  104.  * Replaces strcat into a fixed buffer, returning false on failure.
  105.  */
  106. NCURSES_EXPORT(bool)
  107. _nc_safe_strcat(string_desc * dst, const char *src)
  108. {
  109.     if (src != 0) {
  110.     size_t len = strlen(src);
  111.  
  112.     if (len < dst->s_size) {
  113.         if (dst->s_tail != 0) {
  114.         strcpy(dst->s_tail, src);
  115.         dst->s_tail += len;
  116.         }
  117.         dst->s_size -= len;
  118.         return TRUE;
  119.     }
  120.     }
  121.     return FALSE;
  122. }
  123.  
  124. /*
  125.  * Replaces strcpy into a fixed buffer, returning false on failure.
  126.  */
  127. NCURSES_EXPORT(bool)
  128. _nc_safe_strcpy(string_desc * dst, const char *src)
  129. {
  130.     if (src != 0) {
  131.     size_t len = strlen(src);
  132.  
  133.     if (len < dst->s_size) {
  134.         if (dst->s_head != 0) {
  135.         strcpy(dst->s_head, src);
  136.         dst->s_tail = dst->s_head + len;
  137.         }
  138.         dst->s_size -= len;
  139.         return TRUE;
  140.     }
  141.     }
  142.     return FALSE;
  143. }
  144.